Thank you for wanting to share your story! This guide will help you contribute.
Good contributions:
- Genuine personal experiences (50-1000 words)
- Helpful advice for beginners
- Overcoming challenges stories
- First contribution experiences
- Learning journey stories
Not accepted:
- Plagiarized or copied content
- Stories under 50 words
- Spam or promotional content
- Duplicate stories
- Offensive or inappropriate content
- Go to
data/stories.json - Click the pencil icon (Edit this file)
- Find the last story entry
- Add a comma after the closing
}of the last story - Copy this template and paste it:
{
"id": X,
"username": "your-github-username",
"name": "Your Full Name",
"githubUrl": "https://github.com/your-username",
"date": "Month Year",
"title": "Your Story Title (e.g., My First Open Source Contribution)",
"story": "Your full story here. Be genuine and helpful. Share what motivated you, what challenges you faced, what you learned, and any advice for others. Minimum 50 words, maximum 500 words.",
"tags": ["tag1", "tag2", "tag3"]
}- Replace
Xwith the next number (if last story is ID 5, use ID 6) - Fill in your information
- Scroll down and click "Propose changes"
- Click "Create pull request"
- Wait for review!
-
Fork the repository
-
Clone your fork:
git clone https://github.com/YOUR-USERNAME/Workshop.git cd Workshop -
Create a new branch:
git checkout -b add-my-story
-
Edit
data/stories.jsonand add your story -
Commit your changes:
git add data/stories.json git commit -m "Add: [Your Name] open source story" -
Push to your fork:
git push origin add-my-story
-
Open a Pull Request on GitHub
{
"id": number, // Next sequential number
"username": "string", // Your GitHub username (without @)
"name": "string", // Your display name
"githubUrl": "string", // Your GitHub profile URL
"date": "string", // Month Year (e.g., "October 2025")
"title": "string", // Story title (3-10 words)
"story": "string", // Your story (50-1000 words)
"tags": ["array"] // 2-5 relevant tags
}Length:
- Minimum: 50 words
- Maximum: 1000 words
- Sweet spot: 150-400 words
- Longer stories get a "Read More" button automatically
What to write:
- Your background (student, developer, career changer, etc.)
- What motivated you to contribute
- Your first contribution experience
- Challenges you faced
- How you overcame them
- What you learned
- Advice for beginners
- Resources that helped you
Writing tips:
- Be authentic and genuine
- Write in first person ("I felt nervous...")
- Include specific details
- Focus on lessons learned
- Be encouraging to others
- Proofread for typos
Choose 2-5 tags. Good tags:
Experience Level:
beginner- Your first contributionsintermediate- Some experienceadvanced- Experienced contributor
Topic:
first-contribution- Your very first PRhacktoberfest- Hacktoberfest participationlearning- Learning journeychallenge- Overcoming obstaclessuccess- Achievement storiescareer-change- Transitioning careers
Technology (optional):
javascript,python,java,go, etc.documentation- Doc contributionsdesign- UI/UX contributionstranslation- Translation work
Wrong: Missing comma between entries
{
"id": 1,
"name": "Alice"
}
{ ← Error! Missing comma above
"id": 2,
"name": "Bob"
}Correct:
{
"id": 1,
"name": "Alice"
}, ← Comma here!
{
"id": 2,
"name": "Bob"
}Wrong: Extra comma after last entry
{
"id": 2,
"name": "Bob"
}, ← Remove this comma!
]
}- Story too short (under 50 words) - Add more details!
- Using someone else's story - Write your own!
- Promotional content - Focus on your experience, not products
- Wrong ID number - Use the next sequential number
- Automated checks: JSON format validation
- Manual review: Story quality, originality, word count
- Feedback: We may ask for clarification or edits
- Merge: Once approved, your story appears on the website!
- Auto-deploy: Website updates automatically
- Your story appears on the website within a few minutes
- Your GitHub avatar shows up automatically
- You're added to the contributors list
- Share the website with others!
- JSON format issues? Use a JSON validator: https://jsonlint.com/
- Not sure what to write? Read existing stories for inspiration
- Technical problems? Open an issue
- Questions? Ask in your PR or open a discussion
Be respectful, inclusive, and kind. We're all here to learn and help each other.
All contributors are featured:
- On the website with your story and avatar
- In the GitHub contributors section
- In the project README
Thank you for sharing your story and inspiring others!