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 Issues

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.

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 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

Java DSA Codes

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

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;
}

Slack-clone UI

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

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

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.

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.

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

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.