you can add any codes in any language by creating its respective folder (if already not available).

Overview

HACKTOBERFEST-2021-WEB-DEV


Beginner-Hacktoberfest

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

About

This is repository of Responsive Portfolio for Hacktoberfest 2021. Participate in Hacktoberfest by contributing to any Open Source project on GitHub! Here is a starter project for first-time contributors.
Visit website


What's Hacktoberfest 2021?

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

During the entire month of October 2021, 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?

Don't know how to start of open source and Contribute to our Open Source Project ? Welcome to the world of hacking!

The steps to follow to contribute to any projects:

  1. If you don't have git on your machine, install it.

  2. Fork this repository

    Fork this repository by clicking on the fork button on the top of this page. This will create a copy of this repository in your account.

  3. Clone the repository

    Now clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the copy to clipboard icon.

    Open a terminal and run the following git command:

    git clone "url you just copied"
    
  4. Add a upstream link to main branch in your cloned repo

    git remote add upstream <original repository>
    
  5. Keep your cloned repo upto date by pulling from upstream

    This will also avoid any merge conflicts while committing new changes

    git pull upstream main
    
  6. Create your feature branch

    Always create new branch

    git checkout -b <feature-name>
    
  7. Track your changes

    git add .
    
  8. Check for your changes.

    git status
    
  9. Commit all the changes

    Write commit message as "Small Message"

    git commit -m "Write a meaningfull but small commit message"
    
  10. Push the changes for review

    git push origin <branch-name>
    
  11. Create a PR on Github.

    Just hit the create a pull request button, you must write a PR message to clarify why and what are you contributing
    

🔥 What will happen after my contribution?

I have created a simple page to display all contributors list here, your name should appear shortly after the pull request is merged.


What I have to do?

You can add any codes in any language by creating its respective folder (if already not available).


You might also like...
MAGMA - a GPT-style multimodal model that can understand any combination of images and language
MAGMA - a GPT-style multimodal model that can understand any combination of images and language

MAGMA -- Multimodal Augmentation of Generative Models through Adapter-based Finetuning Authors repo (alphabetical) Constantin (CoEich), Mayukh (Mayukh

Warning: This project does not have any current developer. See bellow.

Pylearn2: A machine learning research library Warning : This project does not have any current developer. We will continue to review pull requests and

This is my codes that can visualize the psnr image in testing videos.
This is my codes that can visualize the psnr image in testing videos.

CVPR2018-Baseline-PSNRplot This is my codes that can visualize the psnr image in testing videos. Future Frame Prediction for Anomaly Detection – A New

A novel method to tune language models. Codes and datasets for paper ``GPT understands, too''.
A novel method to tune language models. Codes and datasets for paper ``GPT understands, too''.

P-tuning A novel method to tune language models. Codes and datasets for paper ``GPT understands, too''. How to use our code We have released the code

Codes for our paper "SentiLARE: Sentiment-Aware Language Representation Learning with Linguistic Knowledge" (EMNLP 2020)

SentiLARE: Sentiment-Aware Language Representation Learning with Linguistic Knowledge Introduction SentiLARE is a sentiment-aware pre-trained language

Implementation of EMNLP 2017 Paper
Implementation of EMNLP 2017 Paper "Natural Language Does Not Emerge 'Naturally' in Multi-Agent Dialog" using PyTorch and ParlAI

Language Emergence in Multi Agent Dialog Code for the Paper Natural Language Does Not Emerge 'Naturally' in Multi-Agent Dialog Satwik Kottur, José M.

Implementation of EMNLP 2017 Paper
Implementation of EMNLP 2017 Paper "Natural Language Does Not Emerge 'Naturally' in Multi-Agent Dialog" using PyTorch and ParlAI

Language Emergence in Multi Agent Dialog Code for the Paper Natural Language Does Not Emerge 'Naturally' in Multi-Agent Dialog Satwik Kottur, José M.

Game Agent Framework. Helping you create AIs / Bots that learn to play any game you own!
Game Agent Framework. Helping you create AIs / Bots that learn to play any game you own!

Serpent.AI - Game Agent Framework (Python) Update: Revival (May 2020) Development work has resumed on the framework with the aim of bringing it into 2

BasicRL: easy and fundamental codes for deep reinforcement learning。It is an improvement on rainbow-is-all-you-need and OpenAI Spinning Up.
BasicRL: easy and fundamental codes for deep reinforcement learning。It is an improvement on rainbow-is-all-you-need and OpenAI Spinning Up.

BasicRL: easy and fundamental codes for deep reinforcement learning BasicRL is an improvement on rainbow-is-all-you-need and OpenAI Spinning Up. It is

Comments
  • added_programs

    added_programs

    I have added few programs in Java Language like- 1. Adding two Numbers 2. Graph in Java 3. java loops 4. Linear Search 5. Prime Numbers 6. Reverse Number

    hacktoberfest-accepted 
    opened by priyanshu688 6
  • Add TicTacToe game in Java

    Add TicTacToe game in Java

    Changes are made in Java folder inside main branch. TicTacToe.java file is added. It is a simple implementation of the popular tic-tac-toe game in Java language. Fixes #57

    opened by SB2318 1
  • Max and min element of an array

    Max and min element of an array

    import java.util.Scanner; public class max_min { public static void main(String args[]){ Scanner in = new Scanner(System.in);

        System.out.println("Enter the length of array - ");
        int n = in.nextInt();
        System.out.println("Enter numbers in array - ");
        int array[] = new int[n];
        for(int i=0;i<n;i++){
            array[i] = in.nextInt();
        }
        int max =array[0];
        int min= array[0];
        for(int i=0;i<n;i++){
            if(array[i]<min)
            { min = array[i];
            }
            if(array[i]>max){
                max = array[i];
            }
        }
        System.out.println("Minimum - "+min);
        System.out.println("Maximum - "+max);        
    }
    

    }

    opened by somya121 0
Owner
Suman Sharma
We need to have a talk on the subject of what's yours and what's mine. [sumansharma101]
Suman Sharma
A task Provided by A respective Artenal Ai and Ml based Company to complete it

A task Provided by A respective Alternal Ai and Ml based Company to complete it .

Parth Madan 1 Jan 25, 2022
ERISHA is a mulitilingual multispeaker expressive speech synthesis framework. It can transfer the expressivity to the speaker's voice for which no expressive speech corpus is available.

ERISHA: Multilingual Multispeaker Expressive Text-to-Speech Library ERISHA is a multilingual multispeaker expressive speech synthesis framework. It ca

Ajinkya Kulkarni 43 Nov 27, 2022
This folder contains the implementation of the multi-relational attribute propagation algorithm.

MrAP This folder contains the implementation of the multi-relational attribute propagation algorithm. It requires the package pytorch-scatter. Please

null 6 Dec 6, 2022
This folder contains the python code of UR5E's advanced forward kinematics model.

This folder contains the python code of UR5E's advanced forward kinematics model. By entering the angle of the joint of UR5e, the detailed coordinates of up to 48 points around the robot arm can be calculated.

Qiang Wang 4 Sep 17, 2022
My usage of Real-ESRGAN to upscale anime, some test and results in the test_img folder

anime upscaler My usage of Real-ESRGAN to upscale anime, I hope to use this on a proper GPU cuz doing this on CPU is completely shit ?? , I even tried

Shangar Muhunthan 29 Jan 7, 2023
This program can detect your face and add an Christams hat on the top of your head

Auto_Christmas This program can detect your face and add a Christmas hat to the top of your head. just run the Auto_Christmas.py, then you can see the

null 3 Dec 22, 2021