All Projects → ShivamYadav-Coding → hacktoberfest-2021

ShivamYadav-Coding / hacktoberfest-2021

Licence: other
This repository is made for people who wanted to learn about open-source and paricipate in Hactoberfest 2021.

Programming Languages

Jupyter Notebook
11667 projects
java
68154 projects - #9 most used programming language
C++
36643 projects - #6 most used programming language
python
139335 projects - #7 most used programming language
javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to hacktoberfest-2021

ZeroOctave-Javascript-Projects
This Repository Contains 150+ web development Projects.
Stars: ✭ 134 (+605.26%)
Mutual labels:  webdevelopment, hactoberfest2021
web-development-resources
Awesome Web Development Resources.
Stars: ✭ 5,359 (+28105.26%)
Mutual labels:  webdevelopment
Writing
📚📝 Notes on the journey
Stars: ✭ 234 (+1131.58%)
Mutual labels:  webdevelopment
Portfolio-Website
Portfolio Website build using HTML5, CSS3, JavaScript and jQuery
Stars: ✭ 109 (+473.68%)
Mutual labels:  webdevelopment
Test-Bank
Interview preparation and practice problems
Stars: ✭ 43 (+126.32%)
Mutual labels:  webdevelopment
accessible-name-automation-proof-of-concept
This is an experiment based on Accessibility Object Model (AOM). It tries to demonstrate that it is theoretically possible (in a certain way) to predict what the screen reader will say by focusing on semantic and non semantic elements with a bit of automated testing, thus reducing the need for manual testing.
Stars: ✭ 15 (-21.05%)
Mutual labels:  webdevelopment
Opensourceresources
Free opensource Learning Resources related to Web-Development A to Z 🔥❤
Stars: ✭ 210 (+1005.26%)
Mutual labels:  webdevelopment
web-development-learning-resources
💪 Resources to become a senior web developer
Stars: ✭ 21 (+10.53%)
Mutual labels:  webdevelopment
chords
A self-hosted music discord bot, with detailed documentation and constantly upgrading features. Attached below is the documentation to deploy the bot. : )
Stars: ✭ 54 (+184.21%)
Mutual labels:  hactoberfest2021
live-reload-vanilla-website-template
Template to build a website without a front-end framework, including transpilation of ES6+ JavaScript and Sass support
Stars: ✭ 47 (+147.37%)
Mutual labels:  webdevelopment
zkit
zKit, components for modern web.
Stars: ✭ 38 (+100%)
Mutual labels:  webdevelopment
Covidview
A complete COVID-19 tracker cum dashboard website made by me.
Stars: ✭ 24 (+26.32%)
Mutual labels:  webdevelopment
Hacktoberfest-2021
beginner-friendly project to help you in open-source contributions. Made specifically for contributions in HACKTOBERFEST 2021! Hello World Programs in any language and C and Cpp program , Please leave a star ⭐ to support this project! ✨
Stars: ✭ 33 (+73.68%)
Mutual labels:  hactoberfest2021
Awesome-CyberSec-Resources
An awesome collection of curated Cyber Security resources(Books, Tutorials, Blogs, Podcasts, ...)
Stars: ✭ 273 (+1336.84%)
Mutual labels:  hactoberfest2021
nubuilder4
This repository is no longer maintained!
Stars: ✭ 22 (+15.79%)
Mutual labels:  webdevelopment
Javascript Articles
Monthly Series - Top 10 JavaScript Articles
Stars: ✭ 229 (+1105.26%)
Mutual labels:  webdevelopment
BackEnd-Squad
Back End Squad Roadmap
Stars: ✭ 24 (+26.32%)
Mutual labels:  webdevelopment
todo
An example todo application with Go!
Stars: ✭ 61 (+221.05%)
Mutual labels:  webdevelopment
android-development-best-practices
With best practices under your fingertips, you will not lose precious time on reinventing the wheel. Instead, you can focus on writing quality code and getting the job done.
Stars: ✭ 111 (+484.21%)
Mutual labels:  androiddevelopment
MoreApps
No description or website provided.
Stars: ✭ 34 (+78.95%)
Mutual labels:  androiddevelopment

ALERT - Please don't send pull request to this repository any more.

No more pull request to this repository will be counted for Hacktoberfest.

click here to know more.

Hacktoberfest 2021

Welcome everyone!🙌 This repository is made for everyone who wanted to learn about open-source and paricipate in Hacktoberfest 2021.

forthebadge forthebadge forthebadge forthebadge

Hey there!👋

What can you do here?🧐

  • You can solve questions put up by contributors (tag moderators in comment to assign an issue to you and mention the language you will be using).
  • You can put up a problem yourself.
  • You can even contribute a project made by you!
  • Please read this issue click here for more information.

New to github? No problem :) Refer to these resources 🆕

  • In Hindi Language -> Learn complete Git and Github in 1 video by Anuj Bhaiya: Youtube
  • In English Language -> Complete Git and GitHub Tutorial: Youtube
  • Git and github articles on atlassian.com: Website

Steps to put up an issue:📑

First let's see when should you create an issue?

  • If you want to contribute a question or project.
  • If you have a better solution to an existing solved issue.

To create an issue:

Click on the Issue button at top of the page:
pic1

Click new issue and fill up the details!
pic2

Note: Issues must clearly mention what they are addressing, if a problem is being put up then explain it using an example.

Get contributing🤩

Note: One must read CODE_OF_CONDUCT before starting work on any issue

First things first, In order to contribute you have to create a Pull Request from your forked repo which is a remote clone of this upstream repository.
pic3

  1. Click this button at the top of screen to fork this repo, don't forget to star the repository!:
    pic4

  2. Now head over to the forked repository and copy the clone HTTPS URL:
    pic5

  3. Next up clone the forked repo on to the local machine using:

    git clone <copied-fork-link>

  4. Run these command to add remote origin

    git remote add origin <The url of forked github repository>
    

    If this command give message like git remote already exist then run this command

    git remote set-url origin <The url of forked github repository>
    
  5. It is critical to keep your forked repository in sync the upstream repository so merge conflicts can be avoided:

    git remote add upstream https://github.com/ShivamYadav-Coding/hacktoberfest-2021.git
    git fetch upstream
    git pull upstream main
    
  6. Create a seperate branch to work on:

    The branch name must be selected according to the issue

    git checkout -b <branch-name>

  7. Contributors must follow the directory structure guidelines:

    • All files must be kept in a directory.
    • Directory name must resemble the issue assigned.
    • Based on the language used, create a directory inside the language directory.
    • Example: If I am writing in Python I will create a directory inside Python directory.
    • In case a project is being contributed make sure to add the files inside a directory(name according to project) which in turn must be placed inside the Projects directory.
    • Changes done by you will not affect existing structure of the project.
    • Add a README.md with your name and link to github profile using [your-name](link-to-profile)
  8. After the contribution work is ready go ahead and add it to staging area:

    git add -A

  9. Now it is time to commit your changes and sync these changes to forked repo:

    git commit -m <your_message>

    git push origin <branch-name>

  10. Issue a pull request from forked repo to this repo:

    • Head over to Pull Request tab in the forked repo and click on New Pull Request pic6

    • Verify base and head repository name and branch names. pic7

    • Fill in the title and provide a concise description. pic8

  11. Wait for respose on the PR. Congratulations you just contributed to open source!

Code of conduct 👨‍💻

CODE_OF_CONDUCT.md

Labels 🏷

Issues labelled with language name e.g Python, mean that the particular issue has been assigned for language in the label

Let's connect

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].