Git Product home page Git Product logo

manjunani / hacktoberfest-2021 Goto Github PK

View Code? Open in Web Editor NEW
41.0 2.0 203.0 250.33 MB

Hacktoberfest 2021 contribution repository✨

License: MIT License

Python 1.89% JavaScript 14.67% HTML 3.22% CSS 4.34% EJS 0.01% Jupyter Notebook 75.64% TypeScript 0.04% SCSS 0.11% R 0.01% Dart 0.03% Go 0.01% C 0.02%
hacktoberfest-accepted hacktoberfest2021 git webdevelopment javascript python3 beginner-friendly good-first-pr hacktoberfest machine-learning

hacktoberfest-2021's Introduction

🎃 HacktoberFest-2021 🎃

Repository for Hacktoberfest

Note: Although, We are actively focusing on Machine Learning, Data Science and Tricky Python projects.

The Repo has being marked as the Excluded Project if you still wanna make PR's For the Repo You are most Welcome

Getting started with git 🚀

Git Tutorial

Git CheatSheet

How to create a Pull Request 🌸

Creating Pull Request

How to rebase and update Pull Request 🌟

Rebasing and Updating Pull Request

Star and Fork this Repository 👇🏻

⚡ You can star ⭐ and fork 🍽️ this repository on GitHub by navigating at the top of this repository.
⚡ GitHub repository URLs will reference both the username associated with the owner of the repository, as well as the repository name.
⚡ When you’re on the main page for the repository, you’ll see a button to "Star" and “Fork” the repository on your upper right-hand side of the page, underneath your user icon.

😎🙏 Thanks to Our Awesome Contributors 🙏😎

Feedback

If you have any feedback please reach out to me on LinkedIn.

hacktoberfest-2021's People

Contributors

abhijeetsrivastav avatar ak-alam avatar akshat-fsociety avatar arshita04 avatar arushmangal avatar avirajdongare avatar ca11mejp avatar candida18 avatar debajyoti22 avatar dilshanekanayaka avatar karnatisrinivas avatar madhavmehndiratta avatar manish-bitpirate avatar manjunani avatar pandawire avatar rafipriatna avatar raveenabhasin avatar ravinwijekoon avatar rishigarg94 avatar rohit-more avatar shafi9155 avatar shreyakoley020102 avatar siddhantgupta14 avatar souravpanigrahi avatar srijanpratapsrivastava avatar steffin-stanly avatar sudeep-23-11 avatar tandrimasingha avatar whynesspower avatar yashika1410 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

Watchers

 avatar  avatar

hacktoberfest-2021's Issues

REPOSITORY EXCLUDED FROM HACKTOBERFEST

This is for the information that the repository has been excluded by the Hacktoberfest team from the event. This was done to maintain the quality standards and promote good quality open source contributions.

I deeply apologize for making this repo as a source of making PRs not worth the standards of the Hacktoberfest. It was an unintentional thing and I don't want to misguide anyone. Though I didn't allow any spam, checked the code, made contributors raise issues and then make the PR, made them use the template properly but I think the repo was misused.

My intention was good but it went in the wrong direction for the wrong kind of projects

I am making this repo an "archive".

More context from the Hacktoberfest website:
INFO

Add while loop

#include <stdio.h>
int binarySearch(int arr[], int l, int r, int x)
{
while (l <= r) {
int m = l + (r - l) / 2;
if (arr[m] == x)
return m;
if (arr[m] < x)
l = m + 1;
else
r = m - 1;
}
return -1;
}

int main(void)
{
int arr[] = { 2, 3, 4, 10, 40 };
int n = sizeof(arr) / sizeof(arr[0]);
int x = 10;
int result = binarySearch(arr, 0, n - 1, x);
if(result == -1)
printf("Element is not present in array");
else
printf("Element is present at index %d",result);
return 0;
}

Javascript maze game project

Hi ,
I would like to contribute here by adding my project of maze game which also leverages some movement algorithm related to graph .
Can I pick it up
Thanks

Java DSA Codes

Please allow me to put my Coding Ninjas JAVA DSA Code into your repository

Slack-clone UI

I want to add a slack clone ui project in the webdev projects

Add Solar System Simulation

I made a simulation of the Solar System with Unity Game Developer and wanted to ask if I could upload it onto this repository considering you'd be interested. @manjunani

Create unbeatable Tic Tac Toe game

Tic tac toe game in which user will not be able to beat computer no matter how many times you play.
Implemented minimax algorithm in single player mode which makes it unbeatable.

WebDev Projects.

I have added a my project to webdev section. Who will be reviewing it my pull request has passes all the test but it didn't got merge into main repo.

Instagram Auto Follower Bot - Python

Instagram bot to send follow request to a given list of people.
It is a very issential tool for every small business instagram account nowadays.

@manjunani Consider assgining this issue to me

Python Telephone Directory

A simple python program to implement telephone directory using arrays

  1. Add a New phone number.
  2. Search for a number.
  3. Update an existing number.
  4. Delete an existing contact.

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.