Giter Club home page Giter Club logo

hacktoberfest2023-open-source-'s Introduction

Hactoberfest 2023

A beginner-friendly project to help you in open-source contribution. Made specifically for contribution in HACKTOBERFEST 2023! Hello World Programs and Algorithms! Please leave a star to support this project! ![](https://hacktoberfest.digitalocean.com/_nuxt/img/logo-hacktoberfest-full.f42e3b1.svg)

This All programs For beginner

Enjoy All Hacktoberfest has a simple and plain moto.

Beginner-Hacktoberfest

Need Your first pr for hacktoberfest 2k23 ? come on in


❓ What's Hacktoberfest 2023?

Hacktoberfest is the easiest way to get into open source! Hacktoberfest is a month long festival of open source code presented by Digital Ocean and DEV this year in 2023.

During the entire month of October 2022, all you have to do is contribute to any open source projects and open at least 4 pull requests. Yes, any project and any kind of contributions. It can be a be a bug fix, improvement, or even a documentation change! And win a T-Shirt and awesome stickers.

If you’ve never contributed to open source before, this is the perfect time to get started because Hacktoberfest provides a large list of available contribution opportunities (and yes, there are always plenty for beginners too).


👕 Why Should I Contribute?

Hacktoberfest has a simple and plain moto.

Support open source and earn a limited edition T-shirt!

So, yes! You can win a T-Shirt and few awesome stickers to attach on your laptop. On plus side, you will get into beautiful world of open source and get the international exposure.
Wait there's more!


👍 This is Awesome! How Can I Contribute?

It's very easy. You don't need to be an expert in coding and programming. Here are the steps you need to follow to create your -(maybe)- EXAMPLE first pull request within few minutes.

  1. Star this repository.
  2. Navigate To index.html or main.css do so crazy contribution file
  3. Edit the file and insert the line of text in the specified location in the format as given in comment .
  4. Now click on Propose button.
  5. Create a new pull request.
  6. Wait for your Pull Request to be reviewed and merged!
  7. Enjoy and welcome to Hacktoberfest 2023 and Keep Contributing :)

You Can Upload Coded Projects In the Codes Directory


Code Of Conduct

Examples of behavior that contributes to creating a positive environment :

  • Using welcoming and inclusive language
  • Gracefully accepting constructive criticism
  • Focusing on what is best for the community
  • Being respectful of differing viewpoints and experiences

Examples of unacceptable behavior by participants include:

  • Trolling, insulting/derogatory comments, and personal or political attacks
  • Public or private harassment
  • Publishing others' private information, such as a physical or electronic address, without explicit permission

🎯Objectives

The Main Objectives of this Repositry is to help People for their Contribution in Hacktoberfest 2022

hacktoberfest2023-open-source-'s People

Contributors

0xvashishth avatar 9759176595 avatar aakarsh2126 avatar aiswaryak99 avatar akanksha57 avatar akashdeep-tickoo avatar ashishshukla09 avatar avinash18046 avatar aviral-3 avatar david241-webdeveloper avatar deepak7336 avatar dheerajharode avatar emn2 avatar heshani29 avatar imsushant12 avatar nikitagit2003 avatar priyanshiporwal avatar priyasad1997 avatar rutujap113 avatar sajiocs avatar shaiksarfraj-tech avatar shubhkasyap1 avatar sumanrox avatar suwilanji-chipofya avatar tajmuhammed123 avatar tron2003 avatar udaysk3 avatar yugansh23 avatar yukti-agarwal88 avatar zastech avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

hacktoberfest2023-open-source-'s Issues

Day Night Toggle

A day night toggle made using html and css @1dharode please assign this to me under hacktoberfest

Moore's Voting Algorithm in C++ to find the majority element in an array.

Please merge this issue as Hacktoberfest 2022 contribution. I really need that t-shirt. I am basically living for it. Pls tag this as Hacktoberfest issue. I will be really grateful to you.

I commented every step to make the code more readable and understandable.

#include<bits/stdc++.h>
using namespace std;

int moore_voting(int [], int);

int main()
{
    int n, ar[50];
    cout << "Enter the size of the array: ";
    cin >> n;
    for(int i = 0; i<n; i++)
    {
        cout << "ar[" << i << "] = ";
        cin >> ar[i];
    }
    cout << "The majority element in the array is: ";
    cout << moore_voting(ar, n);
}

int moore_voting(int arr[], int size)
{
    //Phase 1: - Finds a suitable candidate for the majority element
    int res = 0, count = 1;     //
    for(int i = 1; i<size; i++)    //Traversing the array
    {
        if(arr[res] == arr[i])   //Checking if first element is same as ith element
            count++;     //If yes then incrementing the count by 1
        else
            count--;     //Decrementing the count if ith element is not equal to first element
        if(count==0)     //If at any point the count becomes 0 while decrementing
        {
            res = i;     //Updating the ith element as result since it's not a suitable 
            count = 1;   //candidate for majority. Also resetting the count of majority element
        }
    }

    //Phase 2: - Checks if the candidate selected is actually in majority or not
    count = 0;
    for(int i = 0; i<size; i++)
    {
        if(arr[res] == arr[i])
        
            count++;              //Line 36-44: - Checks if the candidate
    }                             //element is a majority element or not
    if(count <= size/2)
        res = -1;
    return res;
}

Added Trie Data structure code template in C++

I have added a trie data structure code template in C++. which will be helpful in solving Competitive Programming problems involving trie. Please assign me hacktoberfest-accepted label.

#Issue

Array.c contains HTML code.

Want to Add popular program of Rat In A Maze in java.

Hey @1dharode,
Want to add a popular Program of RAT IN A MAZE in java
Please assign this issue to me under hacktoberfest 2022 and help me in starting my first contribution.
I have already starred the repo and forked it.

Trapping Rainwater Problem?

Can you assign me this task? I will be really grateful to you if you tag this as my Hacktoberfest 2022 contribution.

Animation Using C++

I can make animation of moving car animation using C++.I am proficient in C++ and 3 star in codeshef , please assign it to me

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.