Skip to content

Latest commit

 

History

History
166 lines (116 loc) · 3.25 KB

File metadata and controls

166 lines (116 loc) · 3.25 KB

Hacktoberfest Contribution - itsomg134

📋 Task Checklist

  • Add name to CONTRIBUTING.md
  • Create profile page (itsomg134.md)
  • Create Hello World script

1️⃣ CONTRIBUTING.md Entry

Add this to the CONTRIBUTING.md file:

#### Name: [itsomg134](https://github.com/itsomg134)
- Place: Kolhapur, Maharashtra, India
- Bio: Aspiring Developer and Open Source Enthusiast
- GitHub: [itsomg134](https://github.com/itsomg134)

2️⃣ Profile Page

Create file: profiles/itsomg134.md

# itsomg134

### Location

Kolhapur, Maharashtra, India

### Academics

[Your School/University Name]

### Interests

- Software Development
- Open Source Contributions
- Problem Solving
- Learning New Technologies

### Development

- Aspiring Developer
- Open Source Contributor
- Hacktoberfest Participant 2025

### Projects

- [Project Name](https://github.com/itsomg134/project-name) Description of your project

### Profile Link

[itsomg134](https://github.com/itsomg134)

3️⃣ Hello World Script

Create file: scripts/python/hello_world_itsomg134.py

# LANGUAGE: Python
# ENV: Python 3
# AUTHOR: itsomg134
# GITHUB: https://github.com/itsomg134

print('Hello, World!')

🚀 Git Commands

Step 1: Clone your forked repository

git clone https://github.com/itsomg134/hacktoberfest.git
cd hacktoberfest

Step 2: Create a new branch

git checkout -b add-itsomg134

Step 3: Make your changes

  • Add entry to CONTRIBUTING.md
  • Create profiles/itsomg134.md
  • Create scripts/python/hello_world_itsomg134.py

Step 4: Stage your changes

git add .

Step 5: Commit your changes

git commit -m "Add: itsomg134 to Hacktoberfest contributors"

Step 6: Push to your fork

git push origin add-itsomg134

Step 7: Create Pull Request

  1. Go to https://github.com/itsomg134/hacktoberfest
  2. Click "New Pull Request"
  3. Select your branch: add-itsomg134
  4. Add title: Add: itsomg134 to contributors
  5. Add description explaining your contribution
  6. Submit the PR!

✅ PR Description Template

## Description
Added my contribution to Hacktoberfest 2025!

## Changes Made
- ✅ Added name to CONTRIBUTING.md
- ✅ Created profile page (itsomg134.md)
- ✅ Created Hello World script in Python

## Checklist
- [x] I have read the contribution guidelines
- [x] My code follows the project's coding standards
- [x] I have tested my changes
- [x] All files are in the correct directories

Happy Hacktoberfest! 🎃

📝 Notes

  • Customize the profile page with your actual academic info and projects
  • Verify all files are in the correct directories:
    • CONTRIBUTING.md (root)
    • profiles/itsomg134.md
    • scripts/python/hello_world_itsomg134.py
  • Test your Python script before submitting
  • Review your changes before committing

🎯 Quick Reference

File Location Status
CONTRIBUTING.md entry Root directory ⏳ Pending
Profile page profiles/ ⏳ Pending
Hello World script scripts/python/ ⏳ Pending

Good luck with your first open source contribution! 🚀

Don't forget to ⭐ star the repository after your PR is merged!