Beginner-friendly repository for Hacktober Fest 2021. Start your contribution to open source through baby steps. 💜

Overview

Hacktober Fest 2021

🎉 Open source is changing the world – one contribution at a time! 🎉


This repository is made for beginners who are unfamiliar with open source and GitHub. So what is holding you back?! Make your first contribution to the open source and take home swags. 👕 📦

What is Hacktober Fest?

Hacktoberfest is a month-long open source contribution program hosted by DigitalOcean in the month of October for supporting open source development. Hacktoberfest encourages participation in the open source community, which grows bigger every year. Whether you are a pro in programming or a newbie, Hacktoberfest welcomes each one of the contributors for providing their valuable contribution to the open source community. Completing the challenge earns you a limited edition swags and other exiciting goodies.

How to receive swags?

  • Register yourself at the Hacktober Fest Website
  • Create 4 pull-requests from repositories participating in the challenge (repositories having hacktoberfest topic)
  • Successfully merged PRs will be validated further for 14 days.
  • After that, the PR is accepted
  • Remember! All PRs must be done between October 1 to October 31 to be eligible for swags.
  • This year the first 55,000 participants will be eligible for the prize.

How to contribute?

Read RULES.md before creating a pull request

PRs violating the rules will be closed and reported Spam!

If you're not comfortable with command line, here are tutorials using GUI tools. If you don't have git on your machine, install it.

1. Fork the repository.

fork this repository

2. Clone your forked copy of the project.

git clone  https://github.com/abhilashmnair/HacktoberFest2021.git

3. Navigate to the project directory 📁 .

cd HacktoberFest2021

4. Add a reference(remote) to the original repository.

git remote add upstream https://github.com/abhilashmnair/HacktoberFest2021.git

5. Check the remotes for this repository.

git remote -v

6. Always take a pull from the upstream repository to your master branch to keep it at par with the main project(updated repository).

git pull upstream main

7. Create a new branch.

git checkout -b <your_branch_name>

8. Perform your desired changes to the code base.

9. Track your changes ✔️ .

git add *

10. Commit your changes .

git commit -m "Message"

11. Push the committed changes in your feature branch to your remote repo.

git push -u origin <your_branch_name>

12. To create a pull request, click on compare and pull requests. Please ensure you compare your feature branch to the desired branch of the repository you are supposed to make a PR to.

Not a developer or programmer? Don't worry! Add useful documentation and fix grammatical errors in the README file. Every single contribution of yours will benefit your open source venture.

License

This repository and the contained files are licensed under MIT License. See LICENSE for full text.


💜 Thank You for your participation! 💜

You might also like...
This repository is an open-source implementation of the ICRA 2021 paper: Locus: LiDAR-based Place Recognition using Spatiotemporal Higher-Order Pooling.
This repository is an open-source implementation of the ICRA 2021 paper: Locus: LiDAR-based Place Recognition using Spatiotemporal Higher-Order Pooling.

Locus This repository is an open-source implementation of the ICRA 2021 paper: Locus: LiDAR-based Place Recognition using Spatiotemporal Higher-Order

Official repository of the paper Privacy-friendly Synthetic Data for the Development of Face Morphing Attack Detectors
Official repository of the paper Privacy-friendly Synthetic Data for the Development of Face Morphing Attack Detectors

SMDD-Synthetic-Face-Morphing-Attack-Detection-Development-dataset Official repository of the paper Privacy-friendly Synthetic Data for the Development

A python-image-classification web application project, written in Python and served through the Flask Microframework. This Project implements the VGG16 covolutional neural network, through Keras and Tensorflow wrappers, to make predictions on uploaded images.
ICS 4u HD project, start before-wards. A curtain shooting game using python.

Touhou-Star-Salvation HDCH ICS 4u HD project, start before-wards. A curtain shooting game using python and pygame. By Jason Li For arts and gameplay,

Open source repository for the code accompanying the paper 'Non-Rigid Neural Radiance Fields Reconstruction and Novel View Synthesis of a Deforming Scene from Monocular Video'.
Open source repository for the code accompanying the paper 'Non-Rigid Neural Radiance Fields Reconstruction and Novel View Synthesis of a Deforming Scene from Monocular Video'.

Non-Rigid Neural Radiance Fields This is the official repository for the project "Non-Rigid Neural Radiance Fields: Reconstruction and Novel View Synt

This is an open source python repository for various python tests

Welcome to Py-tests This is an open source python repository for various python tests. This is in response to the hacktoberfest2021 challenge. It is a

An open source Jetson Nano baseboard and tools to design your own.
An open source Jetson Nano baseboard and tools to design your own.

My Jetson Nano Baseboard This basic baseboard gives the user the foundation and the flexibility to design their own baseboard for the Jetson Nano. It

Official repository of OFA. Paper: Unifying Architectures, Tasks, and Modalities Through a Simple Sequence-to-Sequence Learning Framework
Official repository of OFA. Paper: Unifying Architectures, Tasks, and Modalities Through a Simple Sequence-to-Sequence Learning Framework

Paper | Blog OFA is a unified multimodal pretrained model that unifies modalities (i.e., cross-modality, vision, language) and tasks (e.g., image gene

code for our paper "Source Data-absent Unsupervised Domain Adaptation through Hypothesis Transfer and Labeling Transfer"

SHOT++ Code for our TPAMI submission "Source Data-absent Unsupervised Domain Adaptation through Hypothesis Transfer and Labeling Transfer" that is ext

Comments
  • Leetcode Problem solved.

    Leetcode Problem solved.

    Longest Substring Without Repeating Characters

    Approach: 1.We use the sliding window approach. 2.Here the while loop will start when the initial character has been deleted and the initial value has been incremented every time with -> begin = begin + 1. This will increment it to 1 past the initial repeating character. 3. Time complexity: O(1) 4. Space complexity: O(n)

    Fixes #(issue_no)

    Replace issue_no in the above line, with the issue related to this PR.

    Code

    
    let s1 = "abcabcbb"
    let s2 = "pwwkew"
    
    
    var lengthOfLongestSubstring = function(s) {
          let max = 0
          let begin = 0
          let set = new Set()
          
          
          for(let end = 0; end < s.length;end++){
              while(set.has(s[end])){
                  set.delete(s[begin])
                  begin = begin +1
              }
              set.add(s[end])
              max = Math.max(max,end-begin+1)
              
          }
          return max
          };
    
    //Example 1
         let maxsubstring = lengthOfLongestSubstring(s1)
         console.log(maxsubstring)                           //Expected : 3
    
    //Example 2
         let sub2 = lengthOfLongestSubstring(s2)
         console.log(sub2)                                   //Expected : 3
    

    Screenshot

    Screenshot not visible

    Checklist:

    Please tick all the boxes that are fulfilled by your Pull Request.

    • [✔️ ] I have named my files and folder, according to this project's guidelines.
    • [✔️ ] My code follows the style guidelines of this project.
    • [✔️ ] My Pull Request has a descriptive title. (not a vague title like Solved xyz problem)
    • [✔️ ] I have commented on my code, particularly in hard-to-understand areas.
    • [✔️ ] My changes do not produce any warnings.
    • [✔️ ] My submission will produce the expected results and not any errors.
    • [✔️ ] I have added a working sample/screenshot in this pull request.
    hacktoberfest hacktoberfest-accepted 
    opened by dev-ameyjoshi 3
  • Rainwatertrap problem added in c++ directory

    Rainwatertrap problem added in c++ directory

    hello sir, Hope you may like this work. In case of any changes in code kindly contact me, I will love to do so. If possible please merge my pull request. Thankyou

    Regards

    hacktoberfest hacktoberfest-accepted 
    opened by Omgupta0312 2
  • Added GCD in C++

    Added GCD in C++

    The logic of this program is simple. In this program, the smaller integer between n1 and n2 is stored in n2. Then the loop is iterated from i = 1 to i <= n2 and in each iteration, the value of i is increased by 1. If both numbers are divisible by i then, that number is stored in variable gcd. This process is repeated in each iteration. When the iteration is finished, GCD will be stored in variable gcd.

    duplicate 
    opened by mahraanusha 2
  • Reprogrammed fib.py

    Reprogrammed fib.py

    I just reprogrammed your fib code in few lines of code cause its time and space efficient.Using function default keyword made it easier to solve and run tha using loops and statements.I think so you agree with my point.

    enhancement hacktoberfest hacktoberfest-accepted 
    opened by Santhoshstark06 1
Owner
Abhilash M Nair
Abhilash M Nair
Official repository of my book: "Deep Learning with PyTorch Step-by-Step: A Beginner's Guide"

This is the official repository of my book "Deep Learning with PyTorch Step-by-Step". Here you will find one Jupyter notebook for every chapter in the book.

Daniel Voigt Godoy 340 Jan 1, 2023
This repository builds a basic vision transformer from scratch so that one beginner can understand the theory of vision transformer.

vision-transformer-from-scratch This repository includes several kinds of vision transformers from scratch so that one beginner can understand the the

null 1 Dec 24, 2021
PaddleRobotics is an open-source algorithm library for robots based on Paddle, including open-source parts such as human-robot interaction, complex motion control, environment perception, SLAM positioning, and navigation.

简体中文 | English PaddleRobotics paddleRobotics是基于paddle的机器人开源算法库集,包括人机交互、复杂运动控制、环境感知、slam定位导航等开源算法部分。 人机交互 主动多模交互技术TFVT-HRI 主动多模交互技术是通过视觉、语音、触摸传感器等输入机器人

null 185 Dec 26, 2022
PyTorch implementation of the paper: "Preference-Adaptive Meta-Learning for Cold-Start Recommendation", IJCAI, 2021.

PAML PyTorch implementation of the paper: "Preference-Adaptive Meta-Learning for Cold-Start Recommendation", IJCAI, 2021. (Continuously updating ) Int

null 15 Nov 18, 2022
FID calculation with proper image resizing and quantization steps

clean-fid: Fixing Inconsistencies in FID Project | Paper The FID calculation involves many steps that can produce inconsistencies in the final metric.

Gaurav Parmar 606 Jan 6, 2023
Proximal Backpropagation - a neural network training algorithm that takes implicit instead of explicit gradient steps

Proximal Backpropagation Proximal Backpropagation (ProxProp) is a neural network training algorithm that takes implicit instead of explicit gradient s

Thomas Frerix 40 Dec 17, 2022
codes for "Scheduled Sampling Based on Decoding Steps for Neural Machine Translation" (long paper of EMNLP-2022)

Scheduled Sampling Based on Decoding Steps for Neural Machine Translation (EMNLP-2021 main conference) Contents Overview Background Quick to Use Furth

Adaxry 13 Jul 25, 2022
FAST Aiming at the problems of cumbersome steps and slow download speed of GNSS data

FAST Aiming at the problems of cumbersome steps and slow download speed of GNSS data, a relatively complete set of integrated multi-source data download terminal software fast is developed. The software contains most of the data sources required in the process of GNSS scientific research and learning. The way of parallel download greatly improves the efficiency of download.

ChangChuntao 23 Dec 31, 2022
Space-invaders - Simple Game created using Python & PyGame, as my Beginner Python Project

Space Invaders This is a simple SPACE INVADER game create using PYGAME whihc hav

Gaurav Pandey 2 Jan 8, 2022