Skip to content

Commit d501939

Browse files
authored
Merge branch 'open-sauced:main' into main
2 parents ee81f7d + 05e9ffb commit d501939

File tree

73 files changed

+4602
-939
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+4602
-939
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- name: "🔧 setup node"
5959
uses: actions/[email protected]
6060
with:
61-
node-version: 18
61+
node-version: 20
6262

6363
- name: "🔧 install npm@latest"
6464
run: npm i -g npm@latest

README.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,13 @@
1010
[![Commits](https://img.shields.io/github/commit-activity/w/open-sauced/docs.opensauced.pizza?style=flat)](https://github.com/open-sauced/docs.opensauced.pizza/pulse)
1111
[![Issues](https://img.shields.io/github/issues/open-sauced/docs.opensauced.pizza.svg?style=flat)](https://github.com/open-sauced/docs.opensauced.pizza/issues)
1212
[![Releases](https://img.shields.io/github/v/release/open-sauced/docs.opensauced.pizza.svg?style=flat)](https://github.com/open-sauced/docs.opensauced.pizza/releases)
13-
[![Discord](https://img.shields.io/discord/714698561081704529.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/U2peSNf23P)
1413
[![Twitter](https://img.shields.io/twitter/follow/saucedopen?label=Follow&style=social)](https://twitter.com/saucedopen)
1514
</div>
1615

17-
## 🧪 Built for Experimenting
18-
19-
This tool is meant to accelerate development on [OpenSauced](https://opensauced.pizza) by giving contributors a way to access [Docusaurus 2](https://docusaurus.io/) powered developer documentation available at [docs.opensauced.pizza](https://docs.opensauced.pizza).
2016

2117
## 🤝 Contributing
2218

23-
We encourage you to contribute to OpenSauced! All contributors are required to abide by our [Code of Conduct](https://github.com/open-sauced/.github/blob/main/CODE_OF_CONDUCT.md). Please check out the [Contributing guide](https://docs.opensauced.pizza/contributing/introduction-to-contributing/) for guidelines about how to proceed with your contribution.
19+
We encourage you to contribute to OpenSauced! All contributors are required to abide by our [Code of Conduct](https://github.com/open-sauced/.github/blob/main/CODE_OF_CONDUCT.md). Please check out the [Contributing guide](https://opensauced.pizza/docs/contributing/introduction-to-contributing/) for guidelines about how to proceed with your contribution.
2420

2521
<img align="right" src="https://i.ibb.co/CJfW18H/ship.gif" width="200"/>
2622

blog/2023/2023-04-17-writing-your-first-pull-request-tips-best-practices-and-ai-powered-tools-for-success.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Maintainers want to help you write your PR; that’s why they often outline cont
1616

1717
![Jerry McGuire “Help me, help you gif”](https://media.giphy.com/media/uRb2p09vY8lEs/giphy.gif)
1818

19-
This file—often called CONTRIBUTING.md—gives guidelines for submitting your PR, including information like whether or not you need to write tests, the communication process, coding style, and how to submit your pull request. Check out [OpenSauced’s Contributing Guide](https://docs.opensauced.pizza/contributing/introduction-to-contributing/), as an example.
19+
This file—often called CONTRIBUTING.md—gives guidelines for submitting your PR, including information like whether or not you need to write tests, the communication process, coding style, and how to submit your pull request. Check out [OpenSauced’s Contributing Guide](https://opensauced.pizza/docs/contributing/introduction-to-contributing/), as an example.
2020

2121
## Tips for Your First PR
2222
Although every repository may have unique guidelines, there are general guidelines for all PRs. Here are some tips to keep in mind:
@@ -41,7 +41,7 @@ A well-written description will help the maintainer understand the purpose of th
4141
3. Helps with future reference. A well-documented PR provides a historical record of the changes made. This helps future team members to understand the evolution of the code and the decisions made along the way. It also helps with future maintenance and debugging.
4242

4343
![OpenSauced's Examples for communication style](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/sc4v1pihnggpq0asu671.png)
44-
<small> OpenSauced’s [CONTRIBUTING guidelines for communication style](https://docs.opensauced.pizza/contributing/introduction-to-contributing/) </small>
44+
<small> OpenSauced’s [CONTRIBUTING guidelines for communication style](https://opensauced.pizza/docs/contributing/introduction-to-contributing/) </small>
4545

4646
### Link the issue
4747
If the PR is related to an issue, you can link that issue and automatically close the issue when the PR is merged. One way to do this is to use this syntax: `closes #issue-number` for example, `closes #11`.

blog/2023/2023-06-21-open-source-101-a-beginners-guide-to-getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ If there aren’t any labels for beginners, don’t forget that the [best first
5252

5353
> **Check out [OpenSauced Community Health Files](https://github.com/open-sauced/.github/tree/main).**
5454
55-
- Engage with the Community. Join the project’s communication channels, like Slack or [Discord](https://discord.gg/6KYErCXf), their discussions, their blog, and introduce yourself. Ask questions and express your interest in contributing. Becoming a part of the community will expand your connections, help you to gain insights into ongoing discussions and development timelines, and may be an opportunity for mentorship from experienced contributors.
55+
- Engage with the Community. Join the project’s communication channels, like Slack or Discord, [discussion forum](https://github.com/orgs/open-sauced/discussions), or their blog, and introduce yourself. Ask questions and express your interest in contributing. Becoming a part of the community will expand your connections, help you to gain insights into ongoing discussions and development timelines, and may be an opportunity for mentorship from experienced contributors.
5656
- Start small. Look for issues that are small and easy to fix. As you gain experience, you can start working on larger issues or taking on more responsibility. Don’t be afraid to ask for help or to let the maintainers know if you’ve taken on an issue that you can’t complete. It’s all part of the process.
5757
- Be patient. It takes time to learn how to contribute to an open source project. Don't get discouraged if you don't get everything right the first time. Just keep learning and practicing, and you'll eventually get the hang of it.
5858

blog/2023/2023-07-12-100daysofoss-growing-skills-and-real-world-experience.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,6 @@ Our hope is that the community will provide a safe space to discuss challenges,
7272

7373
5. **Making a Positive Impact**: Your contributions benefit other contributors who rely on these projects, fostering a sense of fulfillment and giving back to the community.
7474

75-
For more information on the challenge, like our upcoming events, including our Intro to Open Source Workshops, check out our [#100DaysOfOSS docs page](https://docs.opensauced.pizza/community/100-days-of-oss/). We'll have more great information and resources there on our launch day to help you on your journey. We'll also be dropping daily prompts on Twitter, so feel free to follow [@saucedopen](https://twitter.com/saucedopen) there for more inspiration.
75+
For more information on the challenge, like our upcoming events, including our Intro to Open Source Workshops, check out our [#100DaysOfOSS docs page](https://opensauced.pizza/docs/community/100-days-of-oss/). We'll have more great information and resources there on our launch day to help you on your journey. We'll also be dropping daily prompts on Twitter, so feel free to follow [@saucedopen](https://twitter.com/saucedopen) there for more inspiration.
7676

7777
If you have any questions or suggestions, feel free to drop them below, so we can continue to work on supporting you in your open source adventure.

blog/2023/2023-07-17-the-power-of-git-a-guide-to-collaborative-version-control.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Historically, collaborating on code involved manual file sharing or maintaining
3636
2. **Effortless Synchronization**- By cloning repositories, team members can create local copies of the codebase. This means that everyone has their own version to work on and they can use Git to share the changes between repositories.
3737

3838
## Getting Started with Git
39-
If you want to get some hands-on experience using git, check out OpenSauced's [Intro to Open Source Course](https://github.com/open-sauced/intro) or sign-up for one of our workshops that are listed on the bottom of our [#100DaysOfOSS Challenge docs](https://docs.opensauced.pizza/community/100-days-of-oss/).
39+
If you want to get some hands-on experience using git, check out OpenSauced's [Intro to Open Source Course](https://github.com/open-sauced/intro) or sign-up for one of our workshops that are listed on the bottom of our [#100DaysOfOSS Challenge docs](https://opensauced.pizza/docs/community/100-days-of-oss/).
4040

4141
### Remote Repositories and Collaboration
4242
Git allows for collaboration by enabling developers to work on the same codebase from remote locations.

blog/2023/2023-07-24-setting-goals-for-your-open-source-contributions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ You’re more likely to succeed in what you do if you if you set goals and you c
2424

2525
5. **Prioritize and Time Management**. Prioritize your goals and create a schedule that divides time for contributions, learning, and community engagement. Remember, the goal of #100DaysOfOSS is to help you grow. You don’t want to burn out. So be realistic about the time that you have to devote to open source projects. And remember, it’s ok and good to schedule days off as part of your schedule.
2626

27-
6. **Set Accountability Measures**. Establish ways to track your progress, such as using our [journal template](https://github.com/open-sauced/100-days-of-oss-template), adding [a highlight to your OpenSauced profile](https://insights.opensauced.pizza/feed), and/or using the #100DaysOfOSS hashtag on social media. You can also share your goals in the [OpenSauced Discord](https://discord.gg/opensauced) for added support.
27+
6. **Set Accountability Measures**. Establish ways to track your progress, such as using our [journal template](https://github.com/open-sauced/100-days-of-oss-template), adding [a highlight to your OpenSauced profile](https://insights.opensauced.pizza/feed), and/or using the #100DaysOfOSS hashtag on social media. You can also share your goals in the [OpenSauced Community](https://github.com/orgs/open-sauced/discussions) for added support.
2828

2929
7. **Embrace Flexibility**. Stay open to adjusting your goals or setting new ones as you go along with the challenge. You might find there are new opportunities, that you need a break, or that you’re able to spend more time than you initially anticipated.
3030

blog/2023/2023-08-07-you-dont-need-a-mentor-embracing-the-power-of-community.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ If a structured learning experience isn’t for you, you can also find a particu
4949
### The Power of Online Communities
5050

5151
Over the last couple of years, online communities and forums have exploded with opportunity. I’m confident that there is a community that suits your needs out there already (but that doesn’t mean you can’t start your own if you can’t find one!) If you’re not sure where to start OpenSauced offers a lot of different opportunities to be part of a community and ask questions:
52-
- [#100DaysOfOSS](https://docs.opensauced.pizza/community/100-days-of-oss/)
53-
- [OpenSauced Discord](https://discord.gg/opensauced)
52+
- [#100DaysOfOSS](https://opensauced.pizza/docs/community/100-days-of-oss/)
53+
- [OpenSauced Community](https://github.com/orgs/open-sauced/discussions)
5454
- [OpenSauced Twitter + Twitter Spaces](https://twitter.com/saucedopen)
5555

5656
Actively participating in communities allows you to seek guidance, ask questions, and contribute your expertise. While mentors can provide awesome guidance, the traditional 1:1 mentorship model might not be the most effective or accessible option for everyone. Redefining mentorship to include various online resources and interactions can empower you to find your own path to success. Remember, it's not about having a single mentor; it's about building a network of support that uplifts and inspires you on your tech journey.

0 commit comments

Comments
 (0)